home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr29 / memsize.zip / CONFIG.H < prev    next >
Text File  |  1995-01-04  |  808b  |  35 lines

  1. /******************************************************************* CONFIG.H
  2.  *                                                                          *
  3.  *                     Configure Dialog definitions                         *
  4.  *                                                                          *
  5.  ****************************************************************************/
  6.  
  7. #ifndef CONFIG_H
  8. #define CONFIG_H
  9.  
  10. typedef struct
  11. {
  12.   SHORT  id ;
  13.   HWND   hwndHelp ;
  14.  
  15.   BOOL   HideControls ;
  16.   BOOL   Float ;
  17.   BOOL   Animate ;
  18.   ULONG  TimerInterval ;
  19.  
  20.   USHORT ItemCount ;
  21.   PSZ   *ItemNames ;
  22.   PBOOL  ItemFlags ;
  23. }
  24. CONFIG_PARMS, *PCONFIG_PARMS ;
  25.  
  26. extern MRESULT EXPENTRY ConfigureProcessor
  27. (
  28.   HWND hwnd,
  29.   USHORT msg,
  30.   MPARAM mp1,
  31.   MPARAM mp2
  32. ) ;
  33.  
  34. #endif
  35.